我的Bilibili频道:香芋派Taro
我的个人博客:taropie0224.github.io(阅读体验更佳)
我的公众号:香芋派的烘焙坊
我的音频技术交流群:1136403177
我的个人微信:JazzyTaroPie

https://leetcode.cn/problems/palindrome-number/

题解and思路

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class Solution {
public:
bool isPalindrome(int x) {
string xs = to_string(x); //类型转换,把整形转化成字符串
int len = xs.length();
int left = 0, right = len - 1; //双指针向中间毕竟
while (left <= right) {
if (xs[left] == xs[right]) {
left++;
right--;
} else {
return false;
}
}
return true;
}
};